home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / devel / prolog / comment1.win < prev    next >
Encoding:
Text File  |  1994-06-08  |  2.7 KB  |  79 lines

  1.             Collected Comments
  2.  
  3. ################################################################
  4. It appears not possible to load .pl files that are in the root
  5. directory of a drive.  Put your files in subdirectories.
  6.  
  7. ################################################################
  8. It appears pkunzip puts all the    files in the same directory.  Use
  9. unzip.
  10.  
  11. ################################################################
  12. A news article with useful comments.  <jan> is added as comment by me.
  13.  
  14. Path: swi.psy.uva.nl!sun4nl!EU.net!howland.reston.ans.net!pipex!bnr.co.uk!corpgate!news.utdallas.edu!pc29112.utdallas.edu!ryoung
  15. From: ryoung@utdallas.edu (Young U. Ryu)
  16. Newsgroups: comp.lang.prolog
  17. Subject: SWI Prolog for Windows Experience
  18. Date: Tue, 7 Jun 1994 09:47:25
  19. Organization: University of Texas at Dallas
  20. Lines: 48
  21. Message-ID: <ryoung.7.0009CA98@utdallas.edu>
  22. NNTP-Posting-Host: pc29112.utdallas.edu
  23. X-Newsreader: Trumpet for Windows [Version 1.0 Rev A]
  24.  
  25.  
  26. I got SWI Prolog for Windows (from swi.psy.uva.nl: pub/SWI-Prolog)
  27. and installed it in Windows for Workgroup 3.11.
  28.  
  29. According to readme.win, if the base directory is c:\pl,
  30. it is not necessary to set SWIPL. But, without setting it,
  31. SWI Prolog does not work properly. E.g. enter help;
  32. SWI Prolog complains that it cannot find index ...
  33. So always set SWIPL, such as:
  34.  
  35.    set swipl=/c:/pl
  36.  
  37. or
  38.  
  39.    set swipl=/d:/lang/swipro
  40.  
  41. etc.
  42.  
  43. According to readme.win, the following does 'boot compilation':
  44.  
  45.   pl.exe -e startup/startup.pc -b boot/init.pl -c boot/load.pl
  46.  
  47. This only works when the base directory is c:\pl. If you install
  48. it in other directory, it does not work, even though you set SWIPL
  49. correctly. So do the following, instead:
  50.  
  51.   pl.exe -e /d:/lang/swipro/startup/startup.pc -b /d:/lang/swipro/boot/init.pl
  52.              -c /d:/lang/swipro/boot/load.pl
  53.  
  54. <jan> -e should be -o
  55. <jan> I think the original is fine if the working directory is the
  56.       installation directory.
  57.  
  58. [Of course, in one line ..., or File/Run of Windows Program Manager.]
  59.  
  60. Be sure to put / (forward slash) in front of the drive name.
  61.  
  62. ==========================
  63.  
  64. By the way, SWI Prolog is *COOL*. Good job.
  65.  
  66. Young
  67.  
  68.  
  69. +-------------------------------------------------------------------+
  70. | Young U. Ryu                        JO 4.4, P.O.Box 830688        |
  71. | Assistant Professor of MIS          2061 N. Floyd Road            |
  72. | School of Management                Richardson, Texas 75083-0688  |
  73. | University of Texas at Dallas       U.S.A.                        |
  74. |                                                                   |
  75. | Fax:   214-690-2799                 Internet: ryoung@utdallas.edu |
  76. +-------------------------------------------------------------------+
  77.  
  78. ################################################################
  79.